'Declaration
Public Function New( _ ByVal severity As LogMessageSeverity, _ ByVal logSystem As String, _ ByVal categoryName As String, _ ByVal skipFrames As Integer, _ ByVal caption As String, _ ByVal description As String, _ ByVal ParamArray args() As Object _ )
public BasicLogMessage( LogMessageSeverity severity, string logSystem, string categoryName, int skipFrames, string caption, string description, params object[] args )
Parameters
- severity
- The severity of the log message.
- logSystem
- The name of the logging system the message was issued through, such as "Trace" or "Gibraltar".
- categoryName
- The logging category or application subsystem category that the log message is associated with, such as "Trace", "Console", "Exception", or the logger name in Log4Net.
- skipFrames
- The number of stack frames to skip over to find the first candidate to be identified as the source of the log message.
- caption
- A simple single-line message caption. (Will not be processed for formatting.)
- description
- Additional multi-line descriptive message (or may be null) which can be a format string followed by corresponding args.
- args
- A variable number of arguments referenced by the formatted description string (or no arguments to skip formatting).